home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / RIBTrimCurve.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  824 b   |  30 lines

  1. // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
  2. // see COPYRIGHT for reuse legalities
  3. //
  4.  
  5. #import <appkit/appkit.h>
  6.  
  7. #import "RIBCommand.h"
  8.  
  9. @interface RIBTrimCurve:RIBCommand
  10. {
  11.   RtInt      nLoops, *nCurves, *order, *n2;
  12.   RtFloat    *knot, *min, *max, *u, *v, *w;
  13.   int         orderLength, n2Length, knotLength, minLength, maxLength, uLength, vLength, wLength;
  14. }
  15.  
  16. - setNLoops:(RtInt)newNLoops nCurves:(RtInt *)newNCurves 
  17.      order:(RtInt *)newOrder len:(int)newOrderLength 
  18.      knot:(RtFloat *)newKnot len:(int)newKnotLength
  19.      min:(RtFloat *)newMin len:(int)newMinLength  max:(RtFloat *)newMax len:(int)newMaxLength
  20.      n2:(RtInt *)newN2 len:(int)newN2Length
  21.      u:(RtFloat *)newU len:(int)newULength  v:(RtFloat *)newV len:(int)newVLength  w:(RtFloat *)newW len:(int)newWLength;
  22.  
  23.  
  24. @end
  25.  
  26.  
  27.  
  28.  
  29.  
  30.